home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / ssol2 / archive / tcltk.z / tcltk / sinclude / tcl.h next >
C/C++ Source or Header  |  1994-09-20  |  22KB  |  632 lines

  1. /*
  2.  * tcl.h --
  3.  *
  4.  *    This header file describes the externally-visible facilities
  5.  *    of the Tcl interpreter.
  6.  *
  7.  * Copyright (c) 1987-1993 The Regents of the University of California.
  8.  * All rights reserved.
  9.  *
  10.  * Permission is hereby granted, without written agreement and without
  11.  * license or royalty fees, to use, copy, modify, and distribute this
  12.  * software and its documentation for any purpose, provided that the
  13.  * above copyright notice and the following two paragraphs appear in
  14.  * all copies of this software.
  15.  * 
  16.  * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
  17.  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  18.  * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
  19.  * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20.  *
  21.  * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  22.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  23.  * AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
  24.  * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
  25.  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  26.  *
  27.  * $Header: /user6/ouster/tcl/RCS/tcl.h,v 1.131 93/11/21 14:50:35 ouster Exp $ SPRITE (Berkeley)
  28.  */
  29.  
  30. #ifndef _TCL
  31. #define _TCL
  32.  
  33. #ifndef BUFSIZ
  34. #include <stdio.h>
  35. #endif
  36.  
  37. #define TCL_VERSION "7.3"
  38. #define TCL_MAJOR_VERSION 7
  39. #define TCL_MINOR_VERSION 3
  40.  
  41. /*
  42.  * Definitions that allow this header file to be used either with or
  43.  * without ANSI C features like function prototypes.
  44.  */
  45.  
  46. #undef _ANSI_ARGS_
  47. #undef CONST
  48. #if ((defined(__STDC__) || defined(SABER)) && !defined(NO_PROTOTYPE)) || defined(__cplusplus)
  49. #   define _USING_PROTOTYPES_ 1
  50. #   define _ANSI_ARGS_(x)    x
  51. #   define CONST const
  52. #   ifdef __cplusplus
  53. #       define VARARGS (...)
  54. #   else
  55. #       define VARARGS ()
  56. #   endif
  57. #else
  58. #   define _ANSI_ARGS_(x)    ()
  59. #   define CONST
  60. #endif
  61.  
  62. #ifdef __cplusplus
  63. #   define EXTERN extern "C"
  64. #else
  65. #   define EXTERN extern
  66. #endif
  67.  
  68. /*
  69.  * Macro to use instead of "void" for arguments that must have
  70.  * type "void *" in ANSI C;  maps them to type "char *" in
  71.  * non-ANSI systems.
  72.  */
  73.  
  74. #ifndef VOID
  75. #   ifdef __STDC__
  76. #       define VOID void
  77. #   else
  78. #       define VOID char
  79. #   endif
  80. #endif
  81.  
  82. /*
  83.  * Miscellaneous declarations (to allow Tcl to be used stand-alone,
  84.  * without the rest of Sprite).
  85.  */
  86.  
  87. #ifndef NULL
  88. #define NULL 0
  89. #endif
  90.  
  91. #ifndef _CLIENTDATA
  92. #   ifdef __STDC__
  93.     typedef void *ClientData;
  94. #   else
  95.     typedef int *ClientData;
  96. #   endif /* __STDC__ */
  97. #define _CLIENTDATA
  98. #endif
  99.  
  100. /*
  101.  * Data structures defined opaquely in this module.  The definitions
  102.  * below just provide dummy types.  A few fields are made visible in
  103.  * Tcl_Interp structures, namely those for returning string values.
  104.  * Note:  any change to the Tcl_Interp definition below must be mirrored
  105.  * in the "real" definition in tclInt.h.
  106.  */
  107.  
  108. typedef struct Tcl_Interp{
  109.     char *result;        /* Points to result string returned by last
  110.                  * command. */
  111.     void (*freeProc) _ANSI_ARGS_((char *blockPtr));
  112.                 /* Zero means result is statically allocated.
  113.                  * If non-zero, gives address of procedure
  114.                  * to invoke to free the result.  Must be
  115.                  * freed by Tcl_Eval before executing next
  116.                  * command. */
  117.     int errorLine;        /* When TCL_ERROR is returned, this gives
  118.                  * the line number within the command where
  119.                  * the error occurred (1 means first line). */
  120. } Tcl_Interp;
  121.  
  122. typedef int *Tcl_Trace;
  123. typedef struct Tcl_AsyncHandler_ *Tcl_AsyncHandler;
  124.  
  125. /*
  126.  * When a TCL command returns, the string pointer interp->result points to
  127.  * a string containing return information from the command.  In addition,
  128.  * the command procedure returns an integer value, which is one of the
  129.  * following:
  130.  *
  131.  * TCL_OK        Command completed normally;  interp->result contains
  132.  *            the command's result.
  133.  * TCL_ERROR        The command couldn't be completed successfully;
  134.  *            interp->result describes what went wrong.
  135.  * TCL_RETURN        The command requests that the current procedure
  136.  *            return;  interp->result contains the procedure's
  137.  *            return value.
  138.  * TCL_BREAK        The command requests that the innermost loop
  139.  *            be exited;  interp->result is meaningless.
  140.  * TCL_CONTINUE        Go on to the next iteration of the current loop;
  141.  *            interp->result is meaningless.
  142.  */
  143.  
  144. #define TCL_OK        0
  145. #define TCL_ERROR    1
  146. #define TCL_RETURN    2
  147. #define TCL_BREAK    3
  148. #define TCL_CONTINUE    4
  149.  
  150. #define TCL_RESULT_SIZE 200
  151.  
  152. /*
  153.  * Argument descriptors for math function callbacks in expressions:
  154.  */
  155.  
  156. typedef enum {TCL_INT, TCL_DOUBLE, TCL_EITHER} Tcl_ValueType;
  157. typedef struct Tcl_Value {
  158.     Tcl_ValueType type;        /* Indicates intValue or doubleValue is
  159.                  * valid, or both. */
  160.     int intValue;        /* Integer value. */
  161.     double doubleValue;        /* Double-precision floating value. */
  162. } Tcl_Value;
  163.  
  164. /*
  165.  * Procedure types defined by Tcl:
  166.  */
  167.  
  168. typedef int (Tcl_AsyncProc) _ANSI_ARGS_((ClientData clientData,
  169.     Tcl_Interp *interp, int code));
  170. typedef void (Tcl_CmdDeleteProc) _ANSI_ARGS_((ClientData clientData));
  171. typedef int (Tcl_CmdProc) _ANSI_ARGS_((ClientData clientData,
  172.     Tcl_Interp *interp, int argc, char *argv[]));
  173. typedef void (Tcl_CmdTraceProc) _ANSI_ARGS_((ClientData clientData,
  174.     Tcl_Interp *interp, int level, char *command, Tcl_CmdProc *proc,
  175.     ClientData cmdClientData, int argc, char *argv[]));
  176. typedef void (Tcl_FreeProc) _ANSI_ARGS_((char *blockPtr));
  177. typedef void (Tcl_InterpDeleteProc) _ANSI_ARGS_((ClientData clientData,
  178.     Tcl_Interp *interp));
  179. typedef int (Tcl_MathProc) _ANSI_ARGS_((ClientData clientData,
  180.     Tcl_Interp *interp, Tcl_Value *args, Tcl_Value *resultPtr));
  181. typedef char *(Tcl_VarTraceProc) _ANSI_ARGS_((ClientData clientData,
  182.     Tcl_Interp *interp, char *part1, char *part2, int flags));
  183.  
  184. /*
  185.  * The structure returned by Tcl_GetCmdInfo and passed into
  186.  * Tcl_SetCmdInfo:
  187.  */
  188.  
  189. typedef struct Tcl_CmdInfo {
  190.     Tcl_CmdProc *proc;            /* Procedure that implements command. */
  191.     ClientData clientData;        /* ClientData passed to proc. */
  192.     Tcl_CmdDeleteProc *deleteProc;    /* Procedure to call when command
  193.                      * is deleted. */
  194.     ClientData deleteData;        /* Value to pass to deleteProc (usually
  195.                      * the same as clientData). */
  196. } Tcl_CmdInfo;
  197.  
  198. /*
  199.  * The structure defined below is used to hold dynamic strings.  The only
  200.  * field that clients should use is the string field, and they should
  201.  * never modify it.
  202.  */
  203.  
  204. #define TCL_DSTRING_STATIC_SIZE 200
  205. typedef struct Tcl_DString {
  206.     char *string;        /* Points to beginning of string:  either
  207.                  * staticSpace below or a malloc'ed array. */
  208.     int length;            /* Number of non-NULL characters in the
  209.                  * string. */
  210.     int spaceAvl;        /* Total number of bytes available for the
  211.                  * string and its terminating NULL char. */
  212.     char staticSpace[TCL_DSTRING_STATIC_SIZE];
  213.                 /* Space to use in common case where string
  214.                  * is small. */
  215. } Tcl_DString;
  216.  
  217. #define Tcl_DStringLength(dsPtr) ((dsPtr)->length)
  218. #define Tcl_DStringValue(dsPtr) ((dsPtr)->string)
  219.  
  220. /*
  221.  * Definitions for the maximum number of digits of precision that may
  222.  * be specified in the "tcl_precision" variable, and the number of
  223.  * characters of buffer space required by Tcl_PrintDouble.
  224.  */
  225.  
  226. #define TCL_MAX_PREC 17
  227. #define TCL_DOUBLE_SPACE (TCL_MAX_PREC+10)
  228.  
  229. /*
  230.  * Flag values passed to Tcl_Eval (see the man page for details;  also
  231.  * see tclInt.h for additional flags that are only used internally by
  232.  * Tcl):
  233.  */
  234.  
  235. #define TCL_BRACKET_TERM    1
  236.  
  237. /*
  238.  * Flag that may be passed to Tcl_ConvertElement to force it not to
  239.  * output braces (careful!  if you change this flag be sure to change
  240.  * the definitions at the front of tclUtil.c).
  241.  */
  242.  
  243. #define TCL_DONT_USE_BRACES    1
  244.  
  245. /*
  246.  * Flag value passed to Tcl_RecordAndEval to request no evaluation
  247.  * (record only).
  248.  */
  249.  
  250. #define TCL_NO_EVAL        -1
  251.  
  252. /*
  253.  * Special freeProc values that may be passed to Tcl_SetResult (see
  254.  * the man page for details):
  255.  */
  256.  
  257. #define TCL_VOLATILE    ((Tcl_FreeProc *) -1)
  258. #define TCL_STATIC    ((Tcl_FreeProc *) 0)
  259. #define TCL_DYNAMIC    ((Tcl_FreeProc *) free)
  260.  
  261. /*
  262.  * Flag values passed to variable-related procedures.
  263.  */
  264.  
  265. #define TCL_GLOBAL_ONLY        1
  266. #define TCL_APPEND_VALUE    2
  267. #define TCL_LIST_ELEMENT    4
  268. #define TCL_TRACE_READS        0x10
  269. #define TCL_TRACE_WRITES    0x20
  270. #define TCL_TRACE_UNSETS    0x40
  271. #define TCL_TRACE_DESTROYED    0x80
  272. #define TCL_INTERP_DESTROYED    0x100
  273. #define TCL_LEAVE_ERR_MSG    0x200
  274.  
  275. /*
  276.  * Types for linked variables:
  277.  */
  278.  
  279. #define TCL_LINK_INT        1
  280. #define TCL_LINK_DOUBLE        2
  281. #define TCL_LINK_BOOLEAN    3
  282. #define TCL_LINK_STRING        4
  283. #define TCL_LINK_READ_ONLY    0x80
  284.  
  285. /*
  286.  * Permission flags for files:
  287.  */
  288.  
  289. #define TCL_FILE_READABLE    1
  290. #define TCL_FILE_WRITABLE    2
  291.  
  292. /*
  293.  * The following declarations either map ckalloc and ckfree to
  294.  * malloc and free, or they map them to procedures with all sorts
  295.  * of debugging hooks defined in tclCkalloc.c.
  296.  */
  297.  
  298. #ifdef TCL_MEM_DEBUG
  299.  
  300. EXTERN char *        Tcl_DbCkalloc _ANSI_ARGS_((unsigned int size,
  301.                 char *file, int line));
  302. EXTERN int        Tcl_DbCkfree _ANSI_ARGS_((char *ptr,
  303.                 char *file, int line));
  304. EXTERN char *        Tcl_DbCkrealloc _ANSI_ARGS_((char *ptr,
  305.                 unsigned int size, char *file, int line));
  306. EXTERN int        Tcl_DumpActiveMemory _ANSI_ARGS_((char *fileName));
  307. EXTERN void        Tcl_ValidateAllMemory _ANSI_ARGS_((char *file,
  308.                 int line));
  309. #  define ckalloc(x) Tcl_DbCkalloc(x, __FILE__, __LINE__)
  310. #  define ckfree(x)  Tcl_DbCkfree(x, __FILE__, __LINE__)
  311. #  define ckrealloc(x,y) Tcl_DbCkrealloc((x), (y),__FILE__, __LINE__)
  312.  
  313. #else
  314.  
  315. #  define ckalloc(x) malloc(x)
  316. #  define ckfree(x)  free(x)
  317. #  define ckrealloc(x,y) realloc(x,y)
  318. #  define Tcl_DumpActiveMemory(x)
  319. #  define Tcl_ValidateAllMemory(x,y)
  320.  
  321. #endif /* TCL_MEM_DEBUG */
  322.  
  323. /*
  324.  * Macro to free up result of interpreter.
  325.  */
  326.  
  327. #define Tcl_FreeResult(interp)                    \
  328.     if ((interp)->freeProc != 0) {                \
  329.     if ((interp)->freeProc == (Tcl_FreeProc *) free) {    \
  330.         ckfree((interp)->result);                \
  331.     } else {                        \
  332.         (*(interp)->freeProc)((interp)->result);        \
  333.     }                            \
  334.     (interp)->freeProc = 0;                    \
  335.     }
  336.  
  337. /*
  338.  * Forward declaration of Tcl_HashTable.  Needed by some C++ compilers
  339.  * to prevent errors when the forward reference to Tcl_HashTable is
  340.  * encountered in the Tcl_HashEntry structure.
  341.  */
  342.  
  343. #ifdef __cplusplus
  344. struct Tcl_HashTable;
  345. #endif
  346.  
  347. /*
  348.  * Structure definition for an entry in a hash table.  No-one outside
  349.  * Tcl should access any of these fields directly;  use the macros
  350.  * defined below.
  351.  */
  352.  
  353. typedef struct Tcl_HashEntry {
  354.     struct Tcl_HashEntry *nextPtr;    /* Pointer to next entry in this
  355.                      * hash bucket, or NULL for end of
  356.                      * chain. */
  357.     struct Tcl_HashTable *tablePtr;    /* Pointer to table containing entry. */
  358.     struct Tcl_HashEntry **bucketPtr;    /* Pointer to bucket that points to
  359.                      * first entry in this entry's chain:
  360.                      * used for deleting the entry. */
  361.     ClientData clientData;        /* Application stores something here
  362.                      * with Tcl_SetHashValue. */
  363.     union {                /* Key has one of these forms: */
  364.     char *oneWordValue;        /* One-word value for key. */
  365.     int words[1];            /* Multiple integer words for key.
  366.                      * The actual size will be as large
  367.                      * as necessary for this table's
  368.                      * keys. */
  369.     char string[4];            /* String for key.  The actual size
  370.                      * will be as large as needed to hold
  371.                      * the key. */
  372.     } key;                /* MUST BE LAST FIELD IN RECORD!! */
  373. } Tcl_HashEntry;
  374.  
  375. /*
  376.  * Structure definition for a hash table.  Must be in tcl.h so clients
  377.  * can allocate space for these structures, but clients should never
  378.  * access any fields in this structure.
  379.  */
  380.  
  381. #define TCL_SMALL_HASH_TABLE 4
  382. typedef struct Tcl_HashTable {
  383.     Tcl_HashEntry **buckets;        /* Pointer to bucket array.  Each
  384.                      * element points to first entry in
  385.                      * bucket's hash chain, or NULL. */
  386.     Tcl_HashEntry *staticBuckets[TCL_SMALL_HASH_TABLE];
  387.                     /* Bucket array used for small tables
  388.                      * (to avoid mallocs and frees). */
  389.     int numBuckets;            /* Total number of buckets allocated
  390.                      * at **bucketPtr. */
  391.     int numEntries;            /* Total number of entries present
  392.                      * in table. */
  393.     int rebuildSize;            /* Enlarge table when numEntries gets
  394.                      * to be this large. */
  395.     int downShift;            /* Shift count used in hashing
  396.                      * function.  Designed to use high-
  397.                      * order bits of randomized keys. */
  398.     int mask;                /* Mask value used in hashing
  399.                      * function. */
  400.     int keyType;            /* Type of keys used in this table. 
  401.                      * It's either TCL_STRING_KEYS,
  402.                      * TCL_ONE_WORD_KEYS, or an integer
  403.                      * giving the number of ints in a
  404.                      */
  405.     Tcl_HashEntry *(*findProc) _ANSI_ARGS_((struct Tcl_HashTable *tablePtr,
  406.         char *key));
  407.     Tcl_HashEntry *(*createProc) _ANSI_ARGS_((struct Tcl_HashTable *tablePtr,
  408.         char *key, int *newPtr));
  409. } Tcl_HashTable;
  410.  
  411. /*
  412.  * Structure definition for information used to keep track of searches
  413.  * through hash tables:
  414.  */
  415.  
  416. typedef struct Tcl_HashSearch {
  417.     Tcl_HashTable *tablePtr;        /* Table being searched. */
  418.     int nextIndex;            /* Index of next bucket to be
  419.                      * enumerated after present one. */
  420.     Tcl_HashEntry *nextEntryPtr;    /* Next entry to be enumerated in the
  421.                      * the current bucket. */
  422. } Tcl_HashSearch;
  423.  
  424. /*
  425.  * Acceptable key types for hash tables:
  426.  */
  427.  
  428. #define TCL_STRING_KEYS        0
  429. #define TCL_ONE_WORD_KEYS    1
  430.  
  431. /*
  432.  * Macros for clients to use to access fields of hash entries:
  433.  */
  434.  
  435. #define Tcl_GetHashValue(h) ((h)->clientData)
  436. #define Tcl_SetHashValue(h, value) ((h)->clientData = (ClientData) (value))
  437. #define Tcl_GetHashKey(tablePtr, h) \
  438.     ((char *) (((tablePtr)->keyType == TCL_ONE_WORD_KEYS) ? (h)->key.oneWordValue \
  439.                         : (h)->key.string))
  440.  
  441. /*
  442.  * Macros to use for clients to use to invoke find and create procedures
  443.  * for hash tables:
  444.  */
  445.  
  446. #define Tcl_FindHashEntry(tablePtr, key) \
  447.     (*((tablePtr)->findProc))(tablePtr, key)
  448. #define Tcl_CreateHashEntry(tablePtr, key, newPtr) \
  449.     (*((tablePtr)->createProc))(tablePtr, key, newPtr)
  450.  
  451. /*
  452.  * Exported Tcl variables:
  453.  */
  454.  
  455. EXTERN int        tcl_AsyncReady;
  456. EXTERN char *        tcl_RcFileName;
  457.  
  458. /*
  459.  * Exported Tcl procedures:
  460.  */
  461.  
  462. EXTERN void        Tcl_AsyncMark _ANSI_ARGS_((Tcl_AsyncHandler async));
  463. EXTERN Tcl_AsyncHandler    Tcl_AsyncCreate _ANSI_ARGS_((Tcl_AsyncProc *proc,
  464.                 ClientData clientData));
  465. EXTERN void        Tcl_AsyncDelete _ANSI_ARGS_((Tcl_AsyncHandler async));
  466. EXTERN int        Tcl_AsyncInvoke _ANSI_ARGS_((Tcl_Interp *interp,
  467.                 int code));
  468. EXTERN void        Tcl_AppendElement _ANSI_ARGS_((Tcl_Interp *interp,
  469.                 char *string));
  470. EXTERN void        Tcl_AppendResult _ANSI_ARGS_(VARARGS);
  471. EXTERN int        Tcl_AppInit _ANSI_ARGS_((Tcl_Interp *interp));
  472. EXTERN void        Tcl_AddErrorInfo _ANSI_ARGS_((Tcl_Interp *interp,
  473.                 char *message));
  474. EXTERN char        Tcl_Backslash _ANSI_ARGS_((char *src,
  475.                 int *readPtr));
  476. EXTERN void        Tcl_CallWhenDeleted _ANSI_ARGS_((Tcl_Interp *interp,
  477.                 Tcl_InterpDeleteProc *proc,
  478.                 ClientData clientData));
  479. EXTERN int        Tcl_CommandComplete _ANSI_ARGS_((char *cmd));
  480. EXTERN char *        Tcl_Concat _ANSI_ARGS_((int argc, char **argv));
  481. EXTERN int        Tcl_ConvertElement _ANSI_ARGS_((char *src,
  482.                 char *dst, int flags));
  483. EXTERN void        Tcl_CreateCommand _ANSI_ARGS_((Tcl_Interp *interp,
  484.                 char *cmdName, Tcl_CmdProc *proc,
  485.                 ClientData clientData,
  486.                 Tcl_CmdDeleteProc *deleteProc));
  487. EXTERN Tcl_Interp *    Tcl_CreateInterp _ANSI_ARGS_((void));
  488. EXTERN void        Tcl_CreateMathFunc _ANSI_ARGS_((Tcl_Interp *interp,
  489.                 char *name, int numArgs, Tcl_ValueType *argTypes,
  490.                 Tcl_MathProc *proc, ClientData clientData));
  491. EXTERN int        Tcl_CreatePipeline _ANSI_ARGS_((Tcl_Interp *interp,
  492.                 int argc, char **argv, int **pidArrayPtr,
  493.                 int *inPipePtr, int *outPipePtr,
  494.                 int *errFilePtr));
  495. EXTERN Tcl_Trace    Tcl_CreateTrace _ANSI_ARGS_((Tcl_Interp *interp,
  496.                 int level, Tcl_CmdTraceProc *proc,
  497.                 ClientData clientData));
  498. EXTERN void        Tcl_DeleteHashEntry _ANSI_ARGS_((
  499.                 Tcl_HashEntry *entryPtr));
  500. EXTERN void        Tcl_DeleteHashTable _ANSI_ARGS_((
  501.                 Tcl_HashTable *tablePtr));
  502. EXTERN char *        Tcl_DStringAppend _ANSI_ARGS_((Tcl_DString *dsPtr,
  503.                 char *string, int length));
  504. EXTERN char *        Tcl_DStringAppendElement _ANSI_ARGS_((
  505.                 Tcl_DString *dsPtr, char *string));
  506. EXTERN void        Tcl_DStringEndSublist _ANSI_ARGS_((Tcl_DString *dsPtr));
  507. EXTERN void        Tcl_DStringFree _ANSI_ARGS_((Tcl_DString *dsPtr));
  508. EXTERN void        Tcl_DStringInit _ANSI_ARGS_((Tcl_DString *dsPtr));
  509. EXTERN void        Tcl_DStringResult _ANSI_ARGS_((Tcl_Interp *interp,
  510.                 Tcl_DString *dsPtr));
  511. EXTERN void        Tcl_DStringStartSublist _ANSI_ARGS_((
  512.                 Tcl_DString *dsPtr));
  513. EXTERN void        Tcl_DStringTrunc _ANSI_ARGS_((Tcl_DString *dsPtr,
  514.                 int length));
  515. EXTERN int        Tcl_DeleteCommand _ANSI_ARGS_((Tcl_Interp *interp,
  516.                 char *cmdName));
  517. EXTERN void        Tcl_DeleteInterp _ANSI_ARGS_((Tcl_Interp *interp));
  518. EXTERN void        Tcl_DeleteTrace _ANSI_ARGS_((Tcl_Interp *interp,
  519.                 Tcl_Trace trace));
  520. EXTERN void        Tcl_DetachPids _ANSI_ARGS_((int numPids, int *pidPtr));
  521. EXTERN void        Tcl_DontCallWhenDeleted _ANSI_ARGS_((
  522.                 Tcl_Interp *interp, Tcl_InterpDeleteProc *proc,
  523.                 ClientData clientData));
  524. EXTERN void        Tcl_EnterFile _ANSI_ARGS_((Tcl_Interp *interp,
  525.                 FILE *file, int permissions));
  526. EXTERN char *        Tcl_ErrnoId _ANSI_ARGS_((void));
  527. EXTERN int        Tcl_Eval _ANSI_ARGS_((Tcl_Interp *interp, char *cmd));
  528. EXTERN int        Tcl_EvalFile _ANSI_ARGS_((Tcl_Interp *interp,
  529.                 char *fileName));
  530. EXTERN int        Tcl_ExprBoolean _ANSI_ARGS_((Tcl_Interp *interp,
  531.                 char *string, int *ptr));
  532. EXTERN int        Tcl_ExprDouble _ANSI_ARGS_((Tcl_Interp *interp,
  533.                 char *string, double *ptr));
  534. EXTERN int        Tcl_ExprLong _ANSI_ARGS_((Tcl_Interp *interp,
  535.                 char *string, long *ptr));
  536. EXTERN int        Tcl_ExprString _ANSI_ARGS_((Tcl_Interp *interp,
  537.                 char *string));
  538. EXTERN int        Tcl_FilePermissions _ANSI_ARGS_((FILE *file));
  539. EXTERN Tcl_HashEntry *    Tcl_FirstHashEntry _ANSI_ARGS_((
  540.                 Tcl_HashTable *tablePtr,
  541.                 Tcl_HashSearch *searchPtr));
  542. EXTERN int        Tcl_GetBoolean _ANSI_ARGS_((Tcl_Interp *interp,
  543.                 char *string, int *boolPtr));
  544. EXTERN int        Tcl_GetCommandInfo _ANSI_ARGS_((Tcl_Interp *interp,
  545.                 char *cmdName, Tcl_CmdInfo *infoPtr));
  546. EXTERN int        Tcl_GetDouble _ANSI_ARGS_((Tcl_Interp *interp,
  547.                 char *string, double *doublePtr));
  548. EXTERN int        Tcl_GetInt _ANSI_ARGS_((Tcl_Interp *interp,
  549.                 char *string, int *intPtr));
  550. EXTERN int        Tcl_GetOpenFile _ANSI_ARGS_((Tcl_Interp *interp,
  551.                 char *string, int write, int checkUsage,
  552.                 FILE **filePtr));
  553. EXTERN char *        Tcl_GetVar _ANSI_ARGS_((Tcl_Interp *interp,
  554.                 char *varName, int flags));
  555. EXTERN char *        Tcl_GetVar2 _ANSI_ARGS_((Tcl_Interp *interp,
  556.                 char *part1, char *part2, int flags));
  557. EXTERN int        Tcl_GlobalEval _ANSI_ARGS_((Tcl_Interp *interp,
  558.                 char *command));
  559. EXTERN char *        Tcl_HashStats _ANSI_ARGS_((Tcl_HashTable *tablePtr));
  560. EXTERN int        Tcl_Init _ANSI_ARGS_((Tcl_Interp *interp));
  561. EXTERN void        Tcl_InitHashTable _ANSI_ARGS_((Tcl_HashTable *tablePtr,
  562.                 int keyType));
  563. EXTERN void        Tcl_InitMemory _ANSI_ARGS_((Tcl_Interp *interp));
  564. EXTERN int        Tcl_LinkVar _ANSI_ARGS_((Tcl_Interp *interp,
  565.                 char *varName, char *addr, int type));
  566. EXTERN char *        Tcl_Merge _ANSI_ARGS_((int argc, char **argv));
  567. EXTERN Tcl_HashEntry *    Tcl_NextHashEntry _ANSI_ARGS_((
  568.                 Tcl_HashSearch *searchPtr));
  569. EXTERN char *        Tcl_ParseVar _ANSI_ARGS_((Tcl_Interp *interp,
  570.                 char *string, char **termPtr));
  571. EXTERN char *        Tcl_PosixError _ANSI_ARGS_((Tcl_Interp *interp));
  572. EXTERN void        Tcl_PrintDouble _ANSI_ARGS_((Tcl_Interp *interp,
  573.                 double value, char *dst));
  574. EXTERN void        Tcl_ReapDetachedProcs _ANSI_ARGS_((void));
  575. EXTERN int        Tcl_RecordAndEval _ANSI_ARGS_((Tcl_Interp *interp,
  576.                 char *cmd, int flags));
  577. EXTERN int        Tcl_RegExpMatch _ANSI_ARGS_((Tcl_Interp *interp,
  578.                 char *string, char *pattern));
  579. EXTERN void        Tcl_ResetResult _ANSI_ARGS_((Tcl_Interp *interp));
  580. #define Tcl_Return Tcl_SetResult
  581. EXTERN int        Tcl_ScanElement _ANSI_ARGS_((char *string,
  582.                 int *flagPtr));
  583. EXTERN int        Tcl_SetCommandInfo _ANSI_ARGS_((Tcl_Interp *interp,
  584.                 char *cmdName, Tcl_CmdInfo *infoPtr));
  585. EXTERN void        Tcl_SetErrorCode _ANSI_ARGS_(VARARGS);
  586. EXTERN int        Tcl_SetRecursionLimit _ANSI_ARGS_((Tcl_Interp *interp,
  587.                 int depth));
  588. EXTERN void        Tcl_SetResult _ANSI_ARGS_((Tcl_Interp *interp,
  589.                 char *string, Tcl_FreeProc *freeProc));
  590. EXTERN char *        Tcl_SetVar _ANSI_ARGS_((Tcl_Interp *interp,
  591.                 char *varName, char *newValue, int flags));
  592. EXTERN char *        Tcl_SetVar2 _ANSI_ARGS_((Tcl_Interp *interp,
  593.                 char *part1, char *part2, char *newValue,
  594.                 int flags));
  595. EXTERN char *        Tcl_SignalId _ANSI_ARGS_((int sig));
  596. EXTERN char *        Tcl_SignalMsg _ANSI_ARGS_((int sig));
  597. EXTERN int        Tcl_SplitList _ANSI_ARGS_((Tcl_Interp *interp,
  598.                 char *list, int *argcPtr, char ***argvPtr));
  599. EXTERN int        Tcl_StringMatch _ANSI_ARGS_((char *string,
  600.                 char *pattern));
  601. EXTERN char *        Tcl_TildeSubst _ANSI_ARGS_((Tcl_Interp *interp,
  602.                 char *name, Tcl_DString *bufferPtr));
  603. EXTERN int        Tcl_TraceVar _ANSI_ARGS_((Tcl_Interp *interp,
  604.                 char *varName, int flags, Tcl_VarTraceProc *proc,
  605.                 ClientData clientData));
  606. EXTERN int        Tcl_TraceVar2 _ANSI_ARGS_((Tcl_Interp *interp,
  607.                 char *part1, char *part2, int flags,
  608.                 Tcl_VarTraceProc *proc, ClientData clientData));
  609. EXTERN void        Tcl_UnlinkVar _ANSI_ARGS_((Tcl_Interp *interp,
  610.                 char *varName));
  611. EXTERN int        Tcl_UnsetVar _ANSI_ARGS_((Tcl_Interp *interp,
  612.                 char *varName, int flags));
  613. EXTERN int        Tcl_UnsetVar2 _ANSI_ARGS_((Tcl_Interp *interp,
  614.                 char *part1, char *part2, int flags));
  615. EXTERN void        Tcl_UntraceVar _ANSI_ARGS_((Tcl_Interp *interp,
  616.                 char *varName, int flags, Tcl_VarTraceProc *proc,
  617.                 ClientData clientData));
  618. EXTERN void        Tcl_UntraceVar2 _ANSI_ARGS_((Tcl_Interp *interp,
  619.                 char *part1, char *part2, int flags,
  620.                 Tcl_VarTraceProc *proc, ClientData clientData));
  621. EXTERN int        Tcl_VarEval _ANSI_ARGS_(VARARGS);
  622. EXTERN ClientData    Tcl_VarTraceInfo _ANSI_ARGS_((Tcl_Interp *interp,
  623.                 char *varName, int flags,
  624.                 Tcl_VarTraceProc *procPtr,
  625.                 ClientData prevClientData));
  626. EXTERN ClientData    Tcl_VarTraceInfo2 _ANSI_ARGS_((Tcl_Interp *interp,
  627.                 char *part1, char *part2, int flags,
  628.                 Tcl_VarTraceProc *procPtr,
  629.                 ClientData prevClientData));
  630.  
  631. #endif /* _TCL */
  632.